home *** CD-ROM | disk | FTP | other *** search
/ Star Festival... a Return to Japan / Star Festival... a Return to Japan.iso / pc / STARFESTIVAL / 08r.dir / 00004.ls < prev    next >
Encoding:
Text File  |  1999-04-09  |  321 b   |  16 lines

  1. on mouseDown
  2.   global gMemoState
  3.   quickSwitch("buttonSound")
  4.   if the type of sprite 35 <> 0 then
  5.     if gMemoState = 0 then
  6.       sprite(19).visible = 0
  7.       sprite(35).movieRate = 0
  8.       gMemoState = 1
  9.     else
  10.       sprite(19).visible = 1
  11.       sprite(35).movieRate = 1
  12.       gMemoState = 0
  13.     end if
  14.   end if
  15. end
  16.